.quote-btn {
      margin: 50px;
      padding: 12px 24px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
    }

    .popup-form {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 50001;
    }

    .form-content {
      background: white;
      padding: 30px;
      border-radius: 15px;
      width: 90%;
      max-width: 450px;
      position: relative;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }

    .form-content h2 {
      margin-top: 0;
      text-align: center;
    }

    .form-content label {
      display: block;
      margin-bottom: 15px;
      color: #333;
    }

    .form-content input,
    .form-content select,
    .form-content textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .submit-btn {
      width: 100%;
      padding: 12px;
      background-color: #28a745;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
    }

    #closeForm {
      position: absolute;
      top: 12px;
      right: 18px;
      font-size: 22px;
      color: #888;
      cursor: pointer;
    }

    .quote-btn {
  transition: opacity 0.3s ease;
}

    /* Toast message */
    #toast {
      position: fixed;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
      background-color: rgb(243, 199, 199);
      color: #28a745;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 18px;
      display: none;
      z-index: 1001;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }